iT邦幫忙

2023 iThome 鐵人賽

DAY 11
0
自我挑戰組

30 天學習資料庫系列 第 11

SQL wildcards

  • 分享至 

  • xImage
  •  

wildcards 萬用字元
-- %代表多個字元 _代表一個字元

-- 取得電話號碼尾數為335的顧客
select *from client where phone like '%335';
select *from client where phone like '%354%';

-- 取得姓氏為 艾 的員工
select *from client where client_name like '艾%';

-- 取得9月生日的員工,後面底線有5個 ex:2002-09-09
select *from employee where birth like '_____09%';


上一篇
SQL聚合函數
下一篇
SQL聯集
系列文
30 天學習資料庫30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言